home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 69 / Cine Live 69.iso / pc / Data / Interface / generique.k < prev    next >
Encoding:
Text File  |  2003-05-05  |  2.5 KB  |  108 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000152; 
  4.     release Editor:
  5.         IOWindow is {$00000122,$0000002A,$00000228,$000003BD,$00000000,$00000000,$00000000,$00000000};
  6.         LayoutWindow is {$00000194,$00000030,$0000028F,$000001EF,$00000000,$00000000,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     
  14.     Elements is [
  15.         oGENERIK22,
  16.         oLOADING3
  17.     ];
  18.     Events is [
  19.         cKeyboardEvent
  20.         with Test is IsSpace; 
  21.             Commands is [
  22.                 cRunCommand
  23.                 with Flags is $00000004; Target is oGENERIK22; Mode is Toggle; end
  24.             ];
  25.         end,
  26.         cKeyboardEvent
  27.         with Value is "+"; 
  28.             Commands is [
  29.                 cSetVolumeCommand
  30.                 with Mode is ExecuteHigher; end
  31.             ];
  32.         end,
  33.         cKeyboardEvent
  34.         with Value is "-"; 
  35.             Commands is [
  36.                 cSetVolumeCommand
  37.                 with Flags is $00000004; Mode is ExecuteLower; end
  38.             ];
  39.         end,
  40.         cKeyboardEvent
  41.         with Value is "m"; 
  42.             Commands is [
  43.                 cRunCommand
  44.                 with Flags is $00000004; Mode is Toggle; Rewind is true; end
  45.             ];
  46.         end
  47.     ];
  48. end;
  49.  
  50. object oGENERIK22 is cMPEGMovie
  51. with 
  52.     Flags is $00000554; 
  53.     release Editor:
  54.         IOWindow is {$000000D9,$0000003E,$0000028F,$000001EF,$00000000,$00000000,$00000000,$00000000};
  55.     end;
  56.     Name is "GENERIK2"; 
  57.     Cursor is oEmptyCursor; 
  58.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  59.     Width is 800; Height is 600; 
  60.     
  61.     URL is "../Videos/GENERIK2.MPG"; 
  62.     Events is [
  63.         cOnscreenEvent
  64.         with Flags is $00000004; 
  65.             Commands is [
  66.                 cRunCommand
  67.                 with Flags is $00000004; Target is oTargetSelf; Rewind is true; end
  68.             ];
  69.         end,
  70.         cMouseUpEvent
  71.         with Flags is $00000004; Flag is true; 
  72.             Commands is [
  73.                 cShowCommand
  74.                 with Flags is $00000004; Target is oLOADING3; end,
  75.                 cRunCommand
  76.                 with Flags is $00000004; Target is oTargetSelf; Mode is Clear; end,
  77.                 cShowCommand
  78.                 with Flags is $00000004; Target is oTargetSelf; Mode is Clear; end,
  79.                 cBrowseCommand
  80.                 with Flags is $00000004; URL is "Data/Interface/loading.k"; URLOption is GetDiskURL; end
  81.             ];
  82.         end,
  83.         cFinishedEvent
  84.         with Flags is $00000004; 
  85.             Commands is [
  86.                 cShowCommand
  87.                 with Flags is $00000004; Target is oLOADING3; end,
  88.                 cBrowseCommand
  89.                 with Flags is $00000004; URL is "Data/Interface/loading.k"; URLOption is GetDiskURL; end,
  90.                 cShowCommand
  91.                 with Flags is $00000004; Target is oTargetSelf; Mode is Clear; end
  92.             ];
  93.         end
  94.     ];
  95. end;
  96.  
  97. object oLOADING3 is cImage
  98. with 
  99.     Flags is $00000400; 
  100.     Name is "LOADING"; 
  101.     Enabled is false; Shown is false; 
  102.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  103.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  104.     
  105.     URL is "../Images/loading.jpg"; 
  106.     
  107.     
  108. end;